基于django+mysql的在线投票系统源代码,后台管理使用simpleUI,前端使用bootstrap 您所在的位置:网站首页 bios csm是什么意思 基于django+mysql的在线投票系统源代码,后台管理使用simpleUI,前端使用bootstrap

基于django+mysql的在线投票系统源代码,后台管理使用simpleUI,前端使用bootstrap

2022-12-10 01:02| 来源: 网络整理| 查看: 265

基于django+mysql的在线投票系统源代码,后台管理使用simpleUI,前端使用bootstrap 程序部署方法 1、安装程序依赖; 2、配置settings.py中的DATABASES,并在mysql中创建对应的数据库; 3、 manage.py migrate #初始化数据库; 4、 manage.py createsuperuser创建管理员; 5、manage.py runserver启动程序 在这里插入图片描述 完整程序代码下载地址:基于django+mysql的在线投票系统源代码

在线投票 在这里插入图片描述 排行榜 在这里插入图片描述 后台管理 在这里插入图片描述 核心代码

""" Django settings for toupiaoxitong project. Generated by 'django-admin startproject' using Django 2.2.12. For more information on this file, see https://docs.djangoproject.com/en/2.2/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/2.2/ref/settings/ """ import os from pathlib import Path # Build paths inside the project like this: os.path.join(BASE_DIR, ...) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = '&sr8i-^-0nqo&*%syq-_(90^f@4b5@9v-7$w@0fv=$r1@$@o%c' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True ALLOWED_HOSTS = [] # Application definition INSTALLED_APPS = [ 'simpleui', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'login', 'myadmin', 'user', ] MIDDLEWARE = [ 'django.middleware.security.SecurityMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', 'login.SimpleMiddleware.SimpleMiddleware', ] ROOT_URLCONF = 'toupiaoxitong.urls' BASE_DIR = Path(__file__).resolve().parent.parent TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [BASE_DIR / 'templates'], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', # media 'django.template.context_processors.media' ], }, }, ] WSGI_APPLICATION = 'toupiaoxitong.wsgi.application' # Database # https://docs.djangoproject.com/en/2.2/ref/settings/#databases DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': 'toupiaoxitong', 'USER': 'root', 'PASSWORD': 'sxing86', 'HOST': '127.0.0.1', 'PORT': '3306', } } # DATABASES = { # 'default': { # 'ENGINE': 'django.db.backends.sqlite3', # 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), # } # } # Password validation # https://docs.djangoproject.com/en/2.2/ref/settings/#auth-password-validators AUTH_PASSWORD_VALIDATORS = [ { 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', }, { 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', }, { 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', }, { 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', }, ] # Internationalization # https://docs.djangoproject.com/en/2.2/topics/i18n/ LANGUAGE_CODE = 'zh-Hans' TIME_ZONE = 'Asia/Shanghai' USE_I18N = True USE_L10N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/2.2/howto/static-files/ STATIC_URL = '/static/' STATICFILES_DIRS = [os.path.join(BASE_DIR, "static")] MEDIA_URL = '/media/' MEDIA_ROOT = os.path.join(BASE_DIR, "media") SIMPLEUI_LOGO = '/static/img/3.jfif'

完整程序代码下载地址:基于django+mysql的在线投票系统源代码



【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

      专题文章
        CopyRight 2018-2019 实验室设备网 版权所有